Platform Explorer / Nuxeo Platform 2023.10

Extension point logConfig

Contribution Descriptors

  • Class: org.nuxeo.runtime.stream.LogConfigDescriptor

Existing Contributions

Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.

  • nuxeo-core-bulk-2023.10.13.jar /OSGI-INF/bulk-config.xml
    <extension point="logConfig" target="org.nuxeo.runtime.stream.service">
        <logConfig>
          <!-- command stream size sets the maximum concurrency for the scroller computation in the Nuxeo cluster -->
          <log name="bulk/command" size="2"/>
          <!-- status stream size sets the maximum concurrency for the status computation in the Nuxeo cluster -->
          <log name="bulk/status" size="1"/>
          <!-- done stream size sets the maximum concurrency for the triggers computations -->
          <log name="bulk/done" size="1"/>
        </logConfig>
      </extension>
  • nuxeo-runtime-2023.10.13.jar /opt/nuxeo/server/nxserver/config/stream-config.xml
    <extension point="logConfig" target="org.nuxeo.runtime.stream.service">
        <logConfig default="true" name="default" type="mem">
        </logConfig>
        <logConfig name="bulk" type="mem">
          <log name="bulk/command" size="2"/>
          <log name="bulk/status" size="2"/>
          <log name="bulk/done" size="1"/>
          <match name="bulk/"/>
        </logConfig>
      </extension>
  • nuxeo-runtime-2023.10.13.jar /opt/nuxeo/server/nxserver/config/stream-config.xml
    <extension point="logConfig" target="org.nuxeo.runtime.stream.service">
         <logConfig name="audit" type="mem">
           <match name="audit/"/>
         </logConfig>
      </extension>
  • nuxeo-runtime-2023.10.13.jar /opt/nuxeo/server/nxserver/config/stream-config.xml
    <extension point="logConfig" target="org.nuxeo.runtime.stream.service">
         <logConfig name="pubsub" type="mem">
           <option name="retention">4h</option>
           <log name="pubsub/pubsub" size="1"/>
           <match name="pubsub/"/>
         </logConfig>
      </extension>